home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-05-23 | 1.2 KB | 36 lines | [TEXT/EMAC] |
- ;;;
- ;;; Distribution *emacs file
- ;;;
-
- ;;; Add to this file any Emacs commands you want executed every time Emacs
- ;;; starts up.
-
- ;;; Uncomment this next line to automatically load the Textures Apple event
- ;;; code and menu at startup.
- ;(load "textures")
-
- ;;; Uncomment to automatically load ispell at startup.
- ;(load "ispell")
-
- ;;; Uncomment to automatically load the Think C support. This will also
- ;;; load Think Reference support.
- ;(load "think-c/think-c")
-
- ;;; Uncomment to automatically load the Think Reference support without
- ;;; Think C support.
- ;(load "think-c/think-ref")
-
- ;;; This is an example of keyboard rebinding. It makes these assignments:
- ;;; F5 splits the display vertically
- ;;; F6 enlarges the window containing the cursor
- ;;; F7 shrinks the window containing the cursor
- ;;; F8 eliminates all split windows
- ;;; See the file ~/lisp/mac/Macintosh-win.el for the codes to define other keys.
-
- (setq mac-raw-map-hooks
- (list
- '(define-key mac-raw-map "\040" 'split-window-vertically)
- '(define-key mac-raw-map "\041" 'enlarge-window)
- '(define-key mac-raw-map "\042" 'shrink-window)
- '(define-key mac-raw-map "\044" 'delete-other-windows)))
-